home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / filutil / pa_st270.zip / EXAMPLE9.INF < prev    next >
Text File  |  1995-02-01  |  1KB  |  25 lines

  1. ===============================================================================
  2. ==========================                         ============================
  3. ==========================       EXAMPLE # 9       ============================
  4. ==========================                         ============================
  5. ===============================================================================
  6.  
  7. THE INPUT FILE:  A DBase DBF file containing a list of computer experts in
  8.                  England.
  9.  
  10. WHAT WE WANT:    We will output the file's data in columnar format, with an
  11.                  appropriate heading at the top of each column.  We want the
  12.                  contact's name, his voice number, and his fax number.
  13.  
  14. HOW WE DO IT:    When in DBF mode, there is no $FLINE.  Rather, each record
  15.                  is pre-parsed into fields.  This makes our job very easy.
  16.                  We do, however, have to check the DELETED field:  if it is
  17.                  set to "Y", the field has been deleted from the database,
  18.                  although it has not yet been replaced or removed.
  19.  
  20.                  We will skip any addresses from "Faster Publishing Ltd",
  21.                  using the IGNORE command.  We will use the TRACE command to
  22.                  generate a trace file that lets us watch the IGNOREs take
  23.                  effect.
  24.  
  25.